a0f18621e622418ed5d220923dc6b27b5bd271e0,src/main/java/io/pivotal/services/plugin/tasks/AbstractCfTask.java,AbstractCfTask,getCfApplicationName,#,16

Before Change


	}

	protected String getCfApplicationName() {
		if (getProject().hasProperty(PropertyNameConstants.CF_APPLICATION_NAME)) {
			return (String) getProject().property(PropertyNameConstants.CF_APPLICATION_NAME);
		}
		return this.getExtension().getName();
	}

After Change


	}

	protected String getCfApplicationName() {
		return getStringPropertyFromProject(PropertyNameConstants.CF_APPLICATION_NAME)
				.orElse(this.getExtension().getName());
	}

	protected String getAppHostName() {